home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / misc / emu / multicv101.lha / multicv.doc < prev   
Text File  |  1995-06-07  |  3KB  |  97 lines

  1. -------------
  2. MultiCV v1.01
  3. -------------
  4.  
  5. Introduction
  6. ------------
  7.  
  8. MultiCV is a simple program to convert ASCII
  9. files from/to the systems Amiga, Macintosh and MS/DOS.
  10. Note that also accented characters will be converted (if possible).
  11.  
  12. Sources are also included, so that MultiCV could be compiled on any system.
  13.  
  14.  
  15. Distribution/Disclaimer
  16. -----------------------
  17.  
  18. MultiCV is Copyright (C) 1995 by Giuseppe Ghibo`.
  19.  
  20. MultiCV is FREEWARE.
  21.  
  22. THIS SOFTWARE IS PROVIDED "AS IS" WITH NO EXPLICIT OR IMPLICIT
  23. WARRANTY OF ANY KIND. YOU ARE USING IT AT YOUR OWN RISK.
  24.  
  25. THE AUTHOR DISCLAIMS ANY LIABILITY FOR DAMAGES, INCLUDING ANY DIRECT,
  26. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING
  27. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  28. POSSIBILITY OF SUCH DAMAGE.
  29.  
  30. This software may be freely distributed and copied only as long as
  31. the following conditions are acknowledged:
  32.  
  33.  - All parts of the program and the documentation myst be left intact
  34.    in any way.
  35.  
  36.  - The distribution of single parts is not allowed. The repacking of
  37.    this distribution with other packers/archivers is, however,
  38.    allowed.
  39.  
  40.  
  41. Usage
  42. -----
  43.  
  44. To convert an ASCII file from one system to another you must
  45. use MultiCV as follows:
  46.  
  47.     multicv -xxx2yyy srcfile destfile
  48.  
  49. where
  50.  
  51.     xxx = source system, i.e. one of ami, dos or mac
  52.     yyy = destination system, i.e. one of ami, dos, mac
  53.     srcfile  = source file name.
  54.     destfile = deestination file name
  55.  
  56. Note that cannot be xxx = yyy (obvious).
  57.  
  58. For instance to convert the ASCII file myfile.txt from Amiga to MS/DOS you
  59. can use
  60.  
  61.     multicv -ami2dos myfile.txt dosfile.txt
  62.  
  63. where dosfile.txt is the name of the destination (dos) file.
  64.  
  65. If no source nor destination file name are provided the
  66. input is read from stdin and the output is sent to stdout, so that we
  67. can pipe the output (and/or the input), as in the following example:
  68.  
  69.     multicv -ami2dos <dosfile.txt | multicv -dos2ami | more
  70.  
  71.  
  72. Distribution Files
  73. ------------------
  74. This archive contains the following files:
  75.  
  76. MSDOS/MULTICV.EXE    Binary executable for MS/DOS
  77. amiga/multicv        Binary executable for the Amiga
  78. multicv.c        C source file.
  79. multicv.doc        The file you are reading.
  80.  
  81.  
  82. Author info
  83. -----------
  84. If you have some questions, suggestions, comments, bug report,
  85. please feel free to contact me at <ghibo@galileo.polito.it>.
  86.  
  87.  
  88. History
  89. -------
  90.  
  91. version 1.01:
  92.             - Fixed a bug which caused to allocat too much memory for
  93.           mac2dos and ami2dos conversions.
  94.         - Changed %d to %u for some printf().
  95.  
  96. version 1.0    - First public release.
  97.